home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / c80tcog.lbr / FCB.H < prev    next >
Text File  |  1985-08-09  |  384b  |  14 lines

  1. /* fcb.h - C declarations for the CP/M file control block struct */
  2.  
  3. struct fcb {            /* CP/M FCB entry        */
  4.     char drv;
  5.     char filename[8];
  6.     char type[3];
  7.     char extent;
  8.     char s1, s2, rec_count;
  9.     char map[16];
  10.     char rec, d1, d2, d3;
  11.     };
  12.  
  13. #define FCB_SIZE sizeof(struct fcb)
  14.